golang.org/x/net/http2.ClientConn.doNotReuse (field)

8 uses

	golang.org/x/net/http2 (current package)
		transport.go#L331: 	doNotReuse       bool       // whether conn is marked to not be reused for any future requests
		transport.go#L887: 	cc.doNotReuse = true
		transport.go#L995: 		Closing:              cc.closing || cc.singleUse || cc.doNotReuse || cc.goAway != nil,
		transport.go#L1038: 		!cc.doNotReuse &&
		transport.go#L1126: 	return cc.doNotReuse && len(cc.streams) == 0
		transport.go#L1441: 		cc.doNotReuse = true
		transport.go#L1615: 	closeOnIdle := cc.singleUse || cc.doNotReuse || cc.t.disableKeepAlives() || cc.goAway != nil
		transport.go#L2052: 	closeOnIdle := cc.singleUse || cc.doNotReuse || cc.t.disableKeepAlives() || cc.goAway != nil